home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
LANG
/
C
/
GCC
/
CLIB
/
!clib
/
h
/
varargs
< prev
Wrap
Text File
|
1997-05-22
|
422b
|
24 lines
/* varargs.h
Shared C Library support. */
#ifndef __VARARGS_H
#define __VARARGS_H
#ifdef __cplusplus
extern "C" {
#endif
/* GCC has its own private copy of varargs.h */
#ifndef __GNUC__
/* Place a copy of <varargs.h> that is suitable for your compiler
after this comment. Then remove the #error line. */
#error varargs.h has not been implemented for this compiler
#endif
#ifdef __cplusplus
}
#endif
#endif